home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM8.FTP < prev    next >
Text File  |  1997-09-02  |  438b  |  16 lines

  1. :---------------------------------------------------------------------
  2. : exam8.ftp
  3. : iFTP example script, using the MOVE command
  4. :---------------------------------------------------------------------
  5.  
  6.   open ftpsite
  7.   if not success then goto error
  8.   move ftp:/dl*.zip import
  9.   if not success then goto error
  10.   exit
  11.  
  12. :----------------------------------------------------------------------
  13. LABEL error
  14.   WriteError "Error"
  15.  
  16.